SHSJS = { setValue: function(strName, iValue) { var myobject if(document.all) { myobject = document.all[strName]; } else if(document.getElementById) { myobject = document.getElementById(strName); } if (myobject) { myobject.innerHTML = iValue; return true; } else { return false; } }, getValue: function(strName) { var myobject if(document.all) { myobject = document.all[strName]; } else if(document.getElementById) { myobject = document.getElementById(strName); } if (myobject) { return myobject.innerHTML; } else { return null; } }, appendValue: function(strName, iValue) { var myobject if(document.all) { myobject = document.all[strName]; } else if(document.getElementById) { myobject = document.getElementById(strName); } if (myobject) { myobject.innerHTML = myobject.innerHTML+iValue; return true; } else { return false; } } } SHSJS.setValue('statscontent_tennis_atp', '
ATP/WTA Scoreboard
No games scheduled for
Nov 21, 2009
 
Copyright © 2009 by STATS LLC.
All rights reserved.
');SHSJS.setValue('statscontent_tennis_wta', '
ATP/WTA Scoreboard
No games scheduled for
Nov 21, 2009
 
Copyright © 2009 by STATS LLC.
All rights reserved.
');